func time.getnum

7 uses

	time (current package)
		format.go#L850: func getnum(s string, fixed bool) (int, string, error) {
		format.go#L1028: 			month, value, err = getnum(value, std == stdZeroMonth)
		format.go#L1041: 			day, value, err = getnum(value, std == stdZeroDay)
		format.go#L1054: 			hour, value, err = getnum(value, false)
		format.go#L1059: 			hour, value, err = getnum(value, std == stdZeroHour12)
		format.go#L1064: 			min, value, err = getnum(value, std == stdZeroMinute)
		format.go#L1069: 			sec, value, err = getnum(value, std == stdZeroSecond)